home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Adobe Air 1.5
/
AdobeAIRInstaller.exe
/
setup.swf
/
scripts
/
_InstalledAppItemRendererWatcherSetupUtil.as
< prev
next >
Wrap
Text File
|
2008-10-29
|
871b
|
29 lines
package
{
import flash.display.Sprite;
import mx.binding.IWatcherSetupUtil;
import mx.binding.PropertyWatcher;
import mx.core.IFlexModuleFactory;
public class _InstalledAppItemRendererWatcherSetupUtil extends Sprite implements IWatcherSetupUtil
{
public function _InstalledAppItemRendererWatcherSetupUtil()
{
super();
}
public static function init(param1:IFlexModuleFactory) : void
{
InstalledAppItemRenderer.watcherSetupUtil = new _InstalledAppItemRendererWatcherSetupUtil();
}
public function setup(param1:Object, param2:Function, param3:Array, param4:Array) : void
{
param4[0] = new PropertyWatcher("defaultIcon",{"propertyChange":true},[param3[0]],param2);
param4[0].updateParent(param1);
}
}
}